home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1993 / Internet Info CD-ROM (Walnut Creek) (1993).iso / networking / osi / isode / dosisode / DOSISODE80.ZIP / ISODE8.WRK / UTILS / MAKE.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-06-17  |  467 b   |  20 lines

  1. @echo off
  2. if not "%1." == "clean." goto check_tidy
  3.     del *.o
  4.     goto end
  5. :check_tidy
  6. if not "%1." == "tidy." goto check_null
  7.     goto end
  8. :check_null
  9. if not "%1." == "." goto bad_param
  10.     gcc -o pass1 pass1.c
  11.     copy /b %ISODE%\utils\stub.exe+pass1 pass1.exe >nul:
  12.     del pass1
  13.     gcc -o string_replace string_replace.c
  14.     copy /b %ISODE%\utils\stub.exe+string_replace string_replace.exe >nul:
  15.     del string_replace
  16.     goto end
  17. :bad_param
  18.     echo unknown option %1
  19. :end
  20.